home *** CD-ROM | disk | FTP | other *** search
- // traffic.rmk
- // define macros
- makepath[.ch] = "\clipper5\include"
- makepath[.h] = "\clipper5\include"
- //
- // Inference rule for compiling (.prg) to .OBJ files
- .prg.obj:
- CLIPPER $* /A/M/N/W
- //
- // Inference rule for compiling (.c) to .OBJ files
- .c.obj:
- qcl /c /AL /Gs /Zl /FPi $*.c
- // tcc -c -ml -f- -a -r -O -Z $*
- //
- // Dependency statements for .OBJ files
- //
- TEST.OBJ: test.prg gbrowse.ch
-
- // Dependency rule for linking .OBJ files to a .EXE file
- //
- TEST.EXE: test.obj gbrowse.obj
- RTLINK FI test, gbrowse
-